home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / KlingonBGApp.sit / Klingon BG App / Source / init.h < prev    next >
Text File  |  1997-06-28  |  689b  |  36 lines

  1. // Source code for Klingon Clock.   Copyright (C) 1996-1997
  2. // Charles H. Hemstreet IV
  3. //
  4. // Started at MacHack 1996
  5. // Completed at MacHack 1997
  6. //
  7. // Best thanks to:
  8. // My wife Regie, son Chad and baby
  9. // Other thanks to Elden Wood and Bob Clark
  10. //
  11. // This code is distributed "as-is" and implies no warranty or guarantee.
  12.  
  13.  
  14. #ifndef __INIT__
  15. #define __INIT__
  16.  
  17. #include <Types.h>
  18. #include <Memory.h>
  19. #include <Quickdraw.h>
  20. #include <Fonts.h>
  21. #include <Events.h>
  22. #include <Menus.h>
  23. #include <Windows.h>
  24. #include <TextEdit.h>
  25. #include <Dialogs.h>
  26. #include <OSUtils.h>
  27. #include <ToolUtils.h>
  28. #include <SegLoad.h>
  29. #include <assert.h>
  30.  
  31. // PROTOTYPE
  32. void Initialize(void);
  33.  
  34.  
  35. #endif  //__INIT__
  36.